home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
wsc4vb24
/
uinstall.bat
< prev
next >
Wrap
DOS Batch File
|
1999-05-31
|
603b
|
35 lines
@echo off
REM
REM un-install script for WSC4VB (5/31/99).
REM
if (%windir%) == () goto WIN31
if not exist %windir%\WSC16.DLL goto TEST2
echo Delete %windir%\WSC16.DLL ?
pause
del %windir%\WSC16.DLL
:TEST2
if not exist %windir%\WSC32.DLL goto DONE
echo Delete %windir%\WSC32.DLL ?
pause
del %windir%\WSC32.DLL
goto DONE
:WIN31
if not exist C:\WINDOWS\WSC16.DLL goto TEST4
echo Delete C:\WINDOWS\WSC16.DLL ?
pause
del C:\WINDOWS\WSC16.DLL
:TEST4
if not exist C:\WINDOWS\WSC32.DLL goto DONE
echo Delete C:\WINDOWS\WSC32.DLL ?
pause
del C:\WINDOWS\WSC32.DLL
:DONE